home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / Anwender / Office / MakeCD_3.2a / Goodies / NSDPatch / NSDPatch.cfg < prev    next >
Text File  |  1998-01-07  |  21KB  |  435 lines

  1. #
  2. # $Id: NSDPatch.cfg 1.24 1998/01/08 06:50:02 heinz Exp $
  3. # $VER: NSDPatch.cfg 43.4 (15.12.97)
  4. #
  5. # Demonstration patch configuration file for NSDPatch
  6. # ===================================================
  7. #
  8. #
  9. # Each device patch configuration must reside on a single line.
  10. # A patch that has been installed once cannot be changed.
  11. # The patching process works also for devices which generate a
  12. # new device base for each OpenDevice() call. It is not Unit
  13. # specific. For devices generating multiple bases per OpenDevice(),
  14. # existing opens won't be patched as they can't be located.
  15. # Once a patch is installed any Unit opened since then will be
  16. # patched.
  17. #
  18. # NOTE WELL: A device patch is not meant to replace an NSD upgrade
  19. #            forever. It will emulate NSD device behaviour on top
  20. #            of existing devices fairly well. It will not add any
  21. #            major safety checks or automagically fix every problem
  22. #            you might have with an old Exec device. It may not
  23. #            implement every single NSD detail for various device
  24. #            types.
  25. #
  26. # THERE IS ABSOLUTELY NO WARRANTY WHATSOEVER! STANDARD DISCLAIMER!
  27. #
  28. # How to install the patch:
  29. #
  30. #   1. Copy the configuration file and NSDPatch onto your boot
  31. #      partition.  You can choose the place arbitrarily, though DEVS:
  32. #      and C: are recommended respectively.
  33. #
  34. #   2. If needed, rename the configuration file and change it as
  35. #      needed for your setup. Check the option descriptions below.
  36. #      BE CAREFUL WHEN CHOOSING PATCH OPTIONS!
  37. #
  38. #   3. Add a line like this one *immediately* after SetPatch to your
  39. #      S:Startup-Sequence:
  40. #
  41. #           <location>NSDPatch QUIET PCF <configfile>
  42. #
  43. #      You only need to specify "PCF <configfile>" if you don't use
  44. #      DEVS:NSDPatch.cfg
  45. #
  46. #   4. On every subsequent reboot, the NSDPatch will silently be
  47. #      turned on according to the configuration. There is nothing
  48. #      more you have to do except turning off the patch for any device
  49. #      that gets updated to be NSD compliant.
  50.  
  51. #
  52. # There are various options, parsed in dos.library/ReadArgs() style.
  53. # This file describes the options available with NSDPatch >=43.16.
  54. #
  55.  
  56. #  DEVICE       The name of the device to patch (need not be resident)
  57. #               If your device supports NSD already, it usually is
  58. #               *NOT* wise to patch it!
  59.  
  60. #  COMMANDS     A comma separated list of the supported command
  61. #               numbers. It is not necessary to specify the general
  62. #               NSD commands like NSCMD_DEVICEQUERY.
  63. #               After specifying commands, you can exclude them with
  64. #               a subsequent negative specification as shown below.
  65. #               Just use the "!" character to specify a command number
  66. #               or range to be subsequently excluded again.
  67. #               (Needs "DEVICE" option)
  68.  
  69. #  DEVICETYPE   The numeric or symbolic NSD device type to set
  70. #               (Needs "COMMANDS" option)
  71.  
  72. #  IOERRNOCMD/S If the device to patch does not support IOERR_NOCMD
  73. #               correctly, i.e. if it crashes on unknown commands,
  74. #               specify this option. Only the commands specified
  75. #               via the "COMMANDS" option will be accepted then.
  76. #               All other requests will be safely returned with the
  77. #               IOERR_NOCMD error.
  78. #               (Needs "DEVICETYPE" option)
  79.  
  80. #  TD64/S       If the device to be patched supports the TD64 command
  81. #               set, use this option. The NSD trackdisk extensions will
  82. #               automatically be redirected then to make use of that
  83. #               functionality for e.g. the V43 FastFileSystem.
  84. #               Otherwise a simple HD_SCSICMD fallback is implemented
  85. #               for trackdisk like devices. This fallback is _very_
  86. #               simple to emulate 64 bit commands. Don't expect magic.
  87. #               (Needs "DEVICETYPE" option)
  88.  
  89. #  ACTIVATE     A DOS pattern to tell which DOS device names should
  90. #               be activated to e.g. start up a filesystem on a
  91. #               patched device. It is safe to specify already
  92. #               active devices. Devices where the name is "hidden"
  93. #               by a volume of the same name currently won't be
  94. #               activated. You may want to specify the partition
  95. #               names of partitions exceeding the 4GB barrier here
  96. #               for a patched device with the V43 FastFileSystem.
  97.  
  98. #  RDBUNIT/N    If you have a trackdisk like boot device that
  99. #               crashes on unknown commands instead of returning
  100. #               IOERR_NOCMD, you will need this option,
  101. #               "IOERRNOCMD", and "ACTIVATE". You can't boot from a
  102. #               partition exceeding the 4GB barrier with an old
  103. #               style device and the V43 FastFileSystem, and you
  104. #               must not mark any partitions exceeding that barrier
  105. #               as automountable if you have a device that does not
  106. #               support IOERR_NOCMD. These partitions won't be
  107. #               activated automatically by e.g. V43 FFS until the
  108. #               patch is installed. To activate or mount these
  109. #               partitions automatically after the patch is in
  110. #               place, specify the device unit number to scan here
  111. #               and the partition names with the "ACTIVATE" option.
  112. #               The Rigid Disk Block on the named unit will be
  113. #               scanned and all named partitions will be mounted.
  114. #               If you specify partitions that are already
  115. #               mounted, an error will be returned. Actually, this
  116. #               option is useful as a general "late mount"
  117. #               functionality! Note that this only looks for
  118. #               partitions that are not marked as auto mountable!
  119.  
  120. #  MOUNTANY/S   To force RDBUNIT to look at any partition entry within
  121. #               the RDB, you can use this option. NSDPatch is a general
  122. #               "late" mount tool then, suitable for any partitions.
  123. #
  124.  
  125. #  VERSION/N    If you know the exact version of a certain device to
  126. #  REVISION/N   be patched, specify these options. The patch line
  127. #               will only be used if this version and revision
  128. #               can be found. As NSDPatch will not skip configuration
  129. #               lines for already patched devices, you can make a list
  130. #               of certain patches for specific versions, followed by
  131. #               a "generic" line for all other versions.
  132. #               This is shown below for scsi.device.
  133. #               Note the usefulness for these options with the ISNSD
  134. #               and VERSIONISNSD options!
  135. #
  136. #               Patches with version and revision info always take
  137. #               precedence over a general patch line for the same
  138. #               deviceif they apply.
  139.  
  140. #  SANA2MAGIC/S Some SANA2 devices don't take it very well if they
  141. #               get passed a NULL buffer management pointer on OpenDevice()
  142. #               This not only makes it hard for NSD to operate nicely, it
  143. #               also confuses some of the popular SANA2 debugging tools.
  144. #               If you have a device like this, you may want to try this
  145. #               option. It should help by providing a dummy pointer if needed.
  146.  
  147. #  ISNSD/S      Will recognize and not patch any device with at least
  148. #               the given VERSION and, optionally,  REVISION.
  149.  
  150. #  VERSIONISNSD/S   Works like ISNSD for the exact VERSION.REVISION.
  151. #               This is useful in case somebody put out a non NSD
  152. #               device suddenly with a higher version number. Tss.
  153. #               What an idea.
  154.  
  155. #  SINGLEPATCHONLY/S
  156. #               NSDPatch will patch a device just once on the "first" call
  157. #               to OpenDevice(). This option is still accepted, but OBSOLETE,
  158. #               as this behaviour is NSDPatch default starting with NSDPatch
  159. #               version 43.12.
  160. #
  161.  
  162. #  TRYMULTIPATCH/S
  163. #               Normally, NSDPatch will check a device to patch on
  164. #               the initial OpenDevice() call and patch it
  165. #               appropriately. This behaviour is default starting
  166. #               with NSDPatch 43.12. If you encounter a device that
  167. #               changes its own device function addresses while it
  168. #               is open, you should use this option. This is highly
  169. #               unlikely, though, as this behaviour would be rather
  170. #               inefficient and possibly crash prone. Note
  171. #               that when using this option, you may encounter
  172. #               infinite loops if other tools like debuggers
  173. #               also patch into the device vectors. Before 43.12,
  174. #               this option was the default setting but due to its
  175. #               dangerous nature, SINGLEPATCHONLY is now the
  176. #               default setting.
  177.  
  178. #  INTBEGINIO/S
  179. #               Some devices may be used from within interrupts
  180. #               to a certain extent. timer.device and audio.device
  181. #               have functionality that may be used from interrupts.
  182. #               Specify this option only if a device may be safely
  183. #               called from within supervisor code. In supervisor
  184. #               mode, NSDPatch functionality is then bypassed to
  185. #               preserve system stability. Do not specify this option
  186. #               if it is not needed as it will add some amount of
  187. #               processing overhead.
  188. #
  189.  
  190. #
  191. #  MAPTODEVICE/K
  192. #  MAPTOUNIT/K/N
  193. #               By using this type, you can define mappings from one
  194. #               device/unit combination to another. This is
  195. #               useful if special tools check on the device
  196. #               name for certain functionality and you really want
  197. #               to use another device/unit. Examples can be found
  198. #               below. It is usually unwise to map devices to
  199. #               devices of a different type because the command
  200. #               sets may well differ in a way that confuse non NSD
  201. #               aware applications. Note that mapping trackdisk
  202. #               units to other devices may be dangerous unless you
  203. #               run any "noclick" hack before NSDPatch!
  204. #
  205.  
  206. #
  207. #  FIXSCSIUPDATE/S
  208. #               The V40 scsi.device has a problem with the JAZ-drive
  209. #               A CMD_UPDATE will start up the drive even if there is
  210. #               nothing to update. For any trackdisk like device
  211. #               with HD_SCSICMD, you # can specify this option to
  212. #               fix a JAZ-drive. CMD_UPDATE will be replaced then
  213. #               with a safe version, which only syncs up the
  214. #               drive's caches if the drive is ready.
  215. #
  216.  
  217. #-------------------------------------------------------------------------
  218. #
  219. # Default configuration lines for the V40 (OS 3.1) devices.
  220. # If you find any bugs or omissions, please report them.
  221. # With some work, all the correct versions could be added,
  222. # and this file could contain complete patch information for
  223. # different OS versions. Feedback on this is welcome.
  224.  
  225. #
  226. # Add a comment '#' character to those lines where you already
  227. # use a NSD device.
  228. #
  229.  
  230. # Notes:
  231. #
  232. #   - audio.device is marked with IOERRNOCMD. It does not crash on
  233. #     unknown commands, but it doesn't set IOERR_NOCMD correctly.
  234. #
  235. #   - As a convenience measure for A4000T users, a line with
  236. #     2nd.scsi.device, equal to the scsi.device line, has been added.
  237. #
  238. #   - mfm.device V38/V40 trashes a CPU register on OpenDevice() and
  239. #     has a special private configuration command. The patch fixes
  240. #     the former automagically (as for any device), and the patch
  241. #     line reflects the latter.
  242. #
  243. #   - scsi.device V40 and before V43.22 will not handle CMD_UPDATE well,
  244. #     This is worked around by the FIXSCSIUPDATE option in the respective
  245. #     lines.
  246.  
  247. DEVICE audio.device     DEVICETYPE NSDEVTYPE_AUDIO      COMMANDS 1-14,32 IOERRNOCMD INTBEGINIO
  248. DEVICE cd.device        DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,18-23,32-46
  249. DEVICE clipboard.device DEVICETYPE NSDEVTYPE_CLIPBOARD  COMMANDS 2-4,9-12
  250. DEVICE console.device   DEVICETYPE NSDEVTYPE_CONSOLE    COMMANDS 1-3,9-12
  251. DEVICE gameport.device  DEVICETYPE NSDEVTYPE_GAMEPORT   COMMANDS 1,5-13
  252. DEVICE input.device     DEVICETYPE NSDEVTYPE_INPUT      COMMANDS 1,5-16
  253. DEVICE keyboard.device  DEVICETYPE NSDEVTYPE_KEYBOARD   COMMANDS 1,5-13
  254. DEVICE parallel.device  DEVICETYPE NSDEVTYPE_PARALLEL   COMMANDS 1-10
  255. DEVICE printer.device   DEVICETYPE NSDEVTYPE_PRINTER    COMMANDS 1-12,!2,!4,!5
  256. DEVICE ramdrive.device  DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 2-5,9,11-15
  257. DEVICE scsi.device      DEVICETYPE NSDEVTYPE_TRACKDISK  VERSION 43 ISNSD FIXSCSIUPDATE
  258. DEVICE scsi.device      DEVICETYPE NSDEVTYPE_TRACKDISK  VERSION 43 REVISION 22 ISNSD
  259. DEVICE scsi.device      DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28 VERSION 40 REVISION 20 FIXSCSIUPDATE
  260. DEVICE scsi.device      DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28,!22 FIXSCSIUPDATE
  261. DEVICE 2nd.scsi.device  DEVICETYPE NSDEVTYPE_TRACKDISK  VERSION 43 ISNSD FIXSCSIUPDATE
  262. DEVICE 2nd.scsi.device  DEVICETYPE NSDEVTYPE_TRACKDISK  VERSION 43 REVISION 22 ISNSD
  263. DEVICE 2nd.scsi.device  DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28 VERSION 40 REVISION 20 FIXSCSIUPDATE
  264. DEVICE 2nd.scsi.device  DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28,!22 FIXSCSIUPDATE
  265. DEVICE serial.device    DEVICETYPE NSDEVTYPE_SERIAL     COMMANDS 1-11,!4
  266. DEVICE timer.device     DEVICETYPE NSDEVTYPE_TIMER      COMMANDS 9-11 INTBEGINIO
  267. DEVICE trackdisk.device DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 2-16,!8,$8002-$8005,$8009-$800b,$8010-$8011
  268. DEVICE mfm.device       DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-23,29
  269.  
  270. DEVICE a2065.device     DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 SANA2MAGIC
  271. DEVICE a2060.device     DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,17-26 SANA2MAGIC IOERRNOCMD
  272. DEVICE slip.device      DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,9-26
  273.  
  274. #-------------------------------------------------------------------------
  275. #
  276. # A few configuration lines for known third party stuff. Please report
  277. # more device configurations if you can obtain them!
  278. #
  279. # It is unwise to use a configuration line without checking the version
  280. # of the device first! Not all these entries are necessarily tested.
  281. #
  282. # Entries for devices that are known to be troublesome are enabled as
  283. # default.
  284. #
  285. # Entries for specific known versions precede entries that should cover
  286. # all other versions.
  287. #
  288. # If you create new entries here, please report them to
  289. # <heinz@hwg.muc.de>. Thanks a lot.
  290. #
  291.  
  292. # For omniscsi.device 1.9 as used in some Guru-ROM's
  293. # Yes, to patch omniscsi.device, you'll need the name gvpscsi.device!
  294. #DEVICE gvpscsi.device   DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 2-5,9-15,20-23,28
  295.  
  296. # For HardFrame Controllers
  297. #DEVICE HardFrame.device DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,23,28
  298.  
  299. # Oliver Kastl's atapi.device
  300. #DEVICE atapi.device      DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28
  301.  
  302. # Another recoverable ram disk
  303. #DEVICE statram.device    DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 2-15,20-21 VERSION 37 REVISION 11
  304.  
  305. # For Hardital Synthesis Controllers
  306. # Looks like this should work with syndisk.device 33.x
  307. #DEVICE syndisk.device    DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 2-5,9,11-15,28,$69,$6d,$70,$73
  308.  
  309. DEVICE amoksana.device   DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 1-5,8-9,16-26 VERSION 3 REVISION 189 SANA2MAGIC
  310. DEVICE amoksana.device   DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 1-5,8-9,16-26 VERSION 3 REVISION 190 SANA2MAGIC
  311. DEVICE amoksana.device   DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 1-5,8-9,16-26 SANA2MAGIC
  312.  
  313. # VillageTronic Ariadne board.
  314. DEVICE ariadne.device    DEVICETYPE NSDEVTYPE_SANA2      VERSION 1 REVISION 47 ISNSD
  315. #DEVICE ariadne.device    DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 VERSION 1 REVISION 39
  316. #DEVICE ariadne.device    DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26
  317.  
  318. # Interworks ICard
  319. DEVICE icard.device      DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 VERSION 1 REVISION 4 SANA2MAGIC IOERRNOCMD
  320. DEVICE icard.device      DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 SANA2MAGIC IOERRNOCMD
  321.  
  322. # NE1000 for the GoldenGate board
  323. DEVICE gg_ne1000.device  DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 VERSION 37 REVISION 7 SANA2MAGIC
  324. DEVICE gg_ne1000.device  DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 SANA2MAGIC
  325.  
  326. # NE2000 for the GoldenGate board
  327. DEVICE gg_ne2000.device  DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 VERSION 37 REVISION 7 SANA2MAGIC
  328. DEVICE gg_ne2000.device  DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-26 SANA2MAGIC
  329.  
  330. # QuickNet board
  331. DEVICE QuickNetS2.device DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,17-26,$7ff0 VERSION 2 REVISION 3 SANA2MAGIC IOERRNOCMD
  332. DEVICE QuickNetS2.device DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,17-26,$7ff0 SANA2MAGIC IOERRNOCMD
  333. DEVICE QuickNet.device   DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8,17,20 SANA2MAGIC
  334.  
  335. # Holger Kruse
  336. #DEVICE ppp.device        DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,9-11,14-26
  337.  
  338. # A4066
  339. #DEVICE a4066.device      DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,9-11,14-26 VERSION 1 REVISION 9
  340.  
  341. # Hydra
  342. DEVICE hydra.device      DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-27 VERSION 1 REVISION 44 SANA2MAGIC
  343. DEVICE hydra.device      DEVICETYPE NSDEVTYPE_SANA2      COMMANDS 2-3,8-11,14-27 SANA2MAGIC
  344.  
  345. # A few lines donated by Alessandro Zummo
  346. # MultiFace Card
  347. #DEVICE duart.device      DEVICETYPE NSDEVTYPE_SERIAL     COMMANDS 1-11,!4
  348. #DEVICE pit.device        DEVICETYPE NSDEVTYPE_PARALLEL   COMMANDS 1-10
  349. # GVP IOExtender or GForce 040 Combo
  350. #DEVICE gvppar.device     DEVICETYPE NSDEVTYPE_PARALLEL   COMMANDS 1-10
  351. #DEVICE gvpser.device     DEVICETYPE NSDEVTYPE_SERIAL     COMMANDS 1-11,!4
  352. # Blizzard boards from Phase V
  353. #DEVICE 2060scsi.device   DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28
  354. #DEVICE 1260scsi.device   DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28
  355. #DEVICE 1230scsi.device   DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28
  356. # diskserial.device
  357. #DEVICE diskserial.device  DEVICETYPE NSDEVTYPE_SERIAL     COMMANDS 1-11,!4
  358. # a2232.device
  359. #DEVICE a2232.device       DEVICETYPE NSDEVTYPE_SERIAL     COMMANDS 1-11,!4
  360.  
  361. # Phase5 board, donated by Willem Schaaij
  362. DEVICE  cybscsi.device  DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28
  363.  
  364. # HWG version 40.9
  365. DEVICE a2060.device     DEVICETYPE NSDEVTYPE_SANA2      VERSION 40 REVISION 9 ISNSD
  366.  
  367. # HWG/MBS version 3.x
  368. DEVICE a2065.device     DEVICETYPE NSDEVTYPE_SANA2      VERSION 3 ISNSD
  369.  
  370. # This should cover SCSI/IDE users with a DataFlyer card.
  371. DEVICE ExpSys.device    DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-9,11-15,18,20-22,28-29 IOERRNOCMD
  372.  
  373. # WarpEngine
  374. #DEVICE warpdrive.device DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28 VERSION 40 REVISION 66
  375.  
  376. # AsimCDFS
  377. #DEVICE asimcdfs.device DEVICETYPE NSDDEVTYPE_UNKNOWN COMMANDS 0-37
  378.  
  379. # diskspare
  380. #DEVICE diskspare.device DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 2-15,18-22 VERSION 3 REVISION 0
  381.  
  382. # squirrel
  383. #DEVICE squirrelserial.device  DEVICETYPE NSDEVTYPE_SERIAL     COMMANDS 1-11,!4 VERSION 37 REVISION 565
  384. #DEVICE squirrelscsi.device    DEVICETYPE NSDEVTYPE_TRACKDISK  COMMANDS 1-15,20-23,28 VERSION 37 REVISION 1765
  385.  
  386. # telser (Command set not checked!)
  387. #DEVICE telser.device  DEVICETYPE NSDEVTYPE_SERIAL     COMMANDS 1-11,!4
  388.  
  389. #-------------------------------------------------------------------------
  390. #
  391. # Some broken software checks the device name and assumes certain
  392. # capabilities. This prohibits the use of updated drivers because
  393. # the software would not use their features.
  394. # Via device mapping, you can map a certain device unit combination
  395. # to another.
  396. #
  397.  
  398. # Fool CrossDOS into using TD_GETGEOMETRY for fake units
  399. #DEVICE mfm.device       UNIT 1 MAPTODEVICE hwgatapi.device MAPTOUNIT 1
  400. #DEVICE mfm.device       UNIT 1 MAPTODEVICE scsi.device MAPTOUNIT 1
  401. # Same thing for versions of FFS.
  402. # Note that mapping trackdisk units to other devices may be dangerous
  403. # unless you run any noclick hack before NSDPatch!
  404. #DEVICE trackdisk.device UNIT 1 MAPTODEVICE hwgatapi.device MAPTOUNIT 1
  405. #DEVICE trackdisk.device UNIT 1 MAPTODEVICE scsi.device MAPTOUNIT 1
  406.  
  407.  
  408. #-------------------------------------------------------------------------
  409. #
  410. # Demonstration lines for activation and late mount functionality.
  411. # If you want to late mount huge partitions, place the late mount lines
  412. # after the device patch line. Note that you must not specify a colon
  413. # for the DOS names.
  414. #
  415.  
  416. # Activate a mounted DOS device entry named "HUGE" (without the colon!)
  417. #ACTIVATE HUGE
  418.  
  419. # Late-Mount and activate a partition named "BIG" on scsi.device unit 4
  420. #DEVICE scsi.device RDBUNIT 4 ACTIVATE BIG
  421.  
  422. # Late-Mount all non automount partitions on scsi.device unit 4
  423. #DEVICE scsi.device RDBUNIT 4 ACTIVATE #?
  424.  
  425. # Late-Mount all unmounted partitions on scsi.device unit 4
  426. #DEVICE scsi.device RDBUNIT 4 ACTIVATE #? MOUNTANY
  427.  
  428. # Late-Mount all unmounted partitions except for UNIX and MAC on scsi.device unit 4
  429. #DEVICE scsi.device RDBUNIT 4 ACTIVATE ~(UNIX|MAC) MOUNTANY
  430.  
  431. #-------------------------------------------------------------------------
  432.  
  433. ### EOT ###
  434.  
  435.